home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue50 / Except / TestEST.dpr < prev    next >
Encoding:
Text File  |  1999-09-05  |  257 b   |  19 lines

  1. program TestEST;
  2.  
  3. uses
  4.   HVEST,
  5.   Forms,
  6.   TestESTUnit1 in 'TestESTUnit1.pas' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. {$IFDEF BindingRTLI}
  11. {$R *.RLI}
  12. {$ENDIF}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.Run;
  18. end.
  19.